app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
↳ QTRS
↳ Overlay + Local Confluence
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(filter2, app(f, x)), f)
APP(app(filter, f), app(app(cons, x), xs)) → APP(f, x)
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(app(app(filter2, app(f, x)), f), x), xs)
APP(app(le, app(s, x)), app(s, y)) → APP(le, x)
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(le, y), x)
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(minus, y)
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(gcd, app(app(minus, y), x))
APP(app(map, f), app(app(cons, x), xs)) → APP(app(map, f), xs)
APP(app(gcd, app(s, x)), app(s, y)) → APP(le, y)
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(gcd, app(app(minus, x), y))
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(if_gcd, app(app(le, y), x)), app(s, x))
APP(app(app(app(filter2, false), f), x), xs) → APP(app(filter, f), xs)
APP(app(app(app(filter2, true), f), x), xs) → APP(app(filter, f), xs)
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(app(minus, y), x)
APP(app(gcd, app(s, x)), app(s, y)) → APP(if_gcd, app(app(le, y), x))
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, y), x)), app(s, x))
APP(app(app(app(filter2, false), f), x), xs) → APP(filter, f)
APP(app(le, app(s, x)), app(s, y)) → APP(app(le, x), y)
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(app(filter2, app(f, x)), f), x)
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(minus, x)
APP(app(map, f), app(app(cons, x), xs)) → APP(f, x)
APP(app(minus, x), app(s, y)) → APP(pred, app(app(minus, x), y))
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(app(minus, x), y)
APP(app(app(app(filter2, true), f), x), xs) → APP(cons, x)
APP(app(filter, f), app(app(cons, x), xs)) → APP(filter2, app(f, x))
APP(app(map, f), app(app(cons, x), xs)) → APP(cons, app(f, x))
APP(app(app(app(filter2, true), f), x), xs) → APP(filter, f)
APP(app(minus, x), app(s, y)) → APP(app(minus, x), y)
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, x), y)), app(s, y))
APP(app(app(app(filter2, true), f), x), xs) → APP(app(cons, x), app(app(filter, f), xs))
APP(app(map, f), app(app(cons, x), xs)) → APP(app(cons, app(f, x)), app(app(map, f), xs))
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(filter2, app(f, x)), f)
APP(app(filter, f), app(app(cons, x), xs)) → APP(f, x)
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(app(app(filter2, app(f, x)), f), x), xs)
APP(app(le, app(s, x)), app(s, y)) → APP(le, x)
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(le, y), x)
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(minus, y)
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(gcd, app(app(minus, y), x))
APP(app(map, f), app(app(cons, x), xs)) → APP(app(map, f), xs)
APP(app(gcd, app(s, x)), app(s, y)) → APP(le, y)
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(gcd, app(app(minus, x), y))
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(if_gcd, app(app(le, y), x)), app(s, x))
APP(app(app(app(filter2, false), f), x), xs) → APP(app(filter, f), xs)
APP(app(app(app(filter2, true), f), x), xs) → APP(app(filter, f), xs)
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(app(minus, y), x)
APP(app(gcd, app(s, x)), app(s, y)) → APP(if_gcd, app(app(le, y), x))
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, y), x)), app(s, x))
APP(app(app(app(filter2, false), f), x), xs) → APP(filter, f)
APP(app(le, app(s, x)), app(s, y)) → APP(app(le, x), y)
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(app(filter2, app(f, x)), f), x)
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(minus, x)
APP(app(map, f), app(app(cons, x), xs)) → APP(f, x)
APP(app(minus, x), app(s, y)) → APP(pred, app(app(minus, x), y))
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(app(minus, x), y)
APP(app(app(app(filter2, true), f), x), xs) → APP(cons, x)
APP(app(filter, f), app(app(cons, x), xs)) → APP(filter2, app(f, x))
APP(app(map, f), app(app(cons, x), xs)) → APP(cons, app(f, x))
APP(app(app(app(filter2, true), f), x), xs) → APP(filter, f)
APP(app(minus, x), app(s, y)) → APP(app(minus, x), y)
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, x), y)), app(s, y))
APP(app(app(app(filter2, true), f), x), xs) → APP(app(cons, x), app(app(filter, f), xs))
APP(app(map, f), app(app(cons, x), xs)) → APP(app(cons, app(f, x)), app(app(map, f), xs))
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ QDP
↳ QDP
APP(app(minus, x), app(s, y)) → APP(app(minus, x), y)
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QDP
↳ QDP
APP(app(minus, x), app(s, y)) → APP(app(minus, x), y)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
↳ QDP
↳ QDP
minus1(x, s(y)) → minus1(x, y)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
gcd(0, x0)
gcd(s(x0), 0)
gcd(s(x0), s(x1))
if_gcd(true, s(x0), s(x1))
if_gcd(false, s(x0), s(x1))
map(x0, nil)
map(x0, cons(x1, x2))
filter(x0, nil)
filter(x0, cons(x1, x2))
filter2(true, x0, x1, x2)
filter2(false, x0, x1, x2)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
gcd(0, x0)
gcd(s(x0), 0)
gcd(s(x0), s(x1))
if_gcd(true, s(x0), s(x1))
if_gcd(false, s(x0), s(x1))
map(x0, nil)
map(x0, cons(x1, x2))
filter(x0, nil)
filter(x0, cons(x1, x2))
filter2(true, x0, x1, x2)
filter2(false, x0, x1, x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
↳ QDPSizeChangeProof
↳ QDP
↳ QDP
↳ QDP
minus1(x, s(y)) → minus1(x, y)
From the DPs we obtained the following set of size-change graphs:
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ QDP
APP(app(le, app(s, x)), app(s, y)) → APP(app(le, x), y)
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QDP
APP(app(le, app(s, x)), app(s, y)) → APP(app(le, x), y)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
↳ QDP
le1(s(x), s(y)) → le1(x, y)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
gcd(0, x0)
gcd(s(x0), 0)
gcd(s(x0), s(x1))
if_gcd(true, s(x0), s(x1))
if_gcd(false, s(x0), s(x1))
map(x0, nil)
map(x0, cons(x1, x2))
filter(x0, nil)
filter(x0, cons(x1, x2))
filter2(true, x0, x1, x2)
filter2(false, x0, x1, x2)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
gcd(0, x0)
gcd(s(x0), 0)
gcd(s(x0), s(x1))
if_gcd(true, s(x0), s(x1))
if_gcd(false, s(x0), s(x1))
map(x0, nil)
map(x0, cons(x1, x2))
filter(x0, nil)
filter(x0, cons(x1, x2))
filter2(true, x0, x1, x2)
filter2(false, x0, x1, x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
↳ QDPSizeChangeProof
↳ QDP
↳ QDP
le1(s(x), s(y)) → le1(x, y)
From the DPs we obtained the following set of size-change graphs:
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, y), x)), app(s, x))
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, x), y)), app(s, y))
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
APP(app(app(if_gcd, false), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, y), x)), app(s, x))
APP(app(app(if_gcd, true), app(s, x)), app(s, y)) → APP(app(gcd, app(app(minus, x), y)), app(s, y))
APP(app(gcd, app(s, x)), app(s, y)) → APP(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(pred, app(s, x)) → x
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
gcd1(s(x), s(y)) → if_gcd1(le(y, x), s(x), s(y))
if_gcd1(false, s(x), s(y)) → gcd1(minus(y, x), s(x))
if_gcd1(true, s(x), s(y)) → gcd1(minus(x, y), s(y))
minus(x, 0) → x
minus(x, s(y)) → pred(minus(x, y))
pred(s(x)) → x
le(0, y) → true
le(s(x), 0) → false
le(s(x), s(y)) → le(x, y)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
gcd(0, x0)
gcd(s(x0), 0)
gcd(s(x0), s(x1))
if_gcd(true, s(x0), s(x1))
if_gcd(false, s(x0), s(x1))
map(x0, nil)
map(x0, cons(x1, x2))
filter(x0, nil)
filter(x0, cons(x1, x2))
filter2(true, x0, x1, x2)
filter2(false, x0, x1, x2)
gcd(0, x0)
gcd(s(x0), 0)
gcd(s(x0), s(x1))
if_gcd(true, s(x0), s(x1))
if_gcd(false, s(x0), s(x1))
map(x0, nil)
map(x0, cons(x1, x2))
filter(x0, nil)
filter(x0, cons(x1, x2))
filter2(true, x0, x1, x2)
filter2(false, x0, x1, x2)
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
↳ QDPOrderProof
↳ QDP
gcd1(s(x), s(y)) → if_gcd1(le(y, x), s(x), s(y))
if_gcd1(false, s(x), s(y)) → gcd1(minus(y, x), s(x))
if_gcd1(true, s(x), s(y)) → gcd1(minus(x, y), s(y))
minus(x, 0) → x
minus(x, s(y)) → pred(minus(x, y))
pred(s(x)) → x
le(0, y) → true
le(s(x), 0) → false
le(s(x), s(y)) → le(x, y)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
The following pairs can be oriented strictly and are deleted.
The remaining pairs can at least be oriented weakly.
if_gcd1(false, s(x), s(y)) → gcd1(minus(y, x), s(x))
if_gcd1(true, s(x), s(y)) → gcd1(minus(x, y), s(y))
Used ordering: Polynomial interpretation [25]:
gcd1(s(x), s(y)) → if_gcd1(le(y, x), s(x), s(y))
POL(0) = 0
POL(false) = 0
POL(gcd1(x1, x2)) = 1 + x1 + x2
POL(if_gcd1(x1, x2, x3)) = 1 + x2 + x3
POL(le(x1, x2)) = 0
POL(minus(x1, x2)) = x1
POL(pred(x1)) = x1
POL(s(x1)) = 1 + x1
POL(true) = 0
minus(x, 0) → x
minus(x, s(y)) → pred(minus(x, y))
pred(s(x)) → x
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ UsableRulesProof
↳ QDP
↳ ATransformationProof
↳ QDP
↳ QReductionProof
↳ QDP
↳ QDPOrderProof
↳ QDP
↳ DependencyGraphProof
↳ QDP
gcd1(s(x), s(y)) → if_gcd1(le(y, x), s(x), s(y))
minus(x, 0) → x
minus(x, s(y)) → pred(minus(x, y))
pred(s(x)) → x
le(0, y) → true
le(s(x), 0) → false
le(s(x), s(y)) → le(x, y)
le(0, x0)
le(s(x0), 0)
le(s(x0), s(x1))
pred(s(x0))
minus(x0, 0)
minus(x0, s(x1))
↳ QTRS
↳ Overlay + Local Confluence
↳ QTRS
↳ DependencyPairsProof
↳ QDP
↳ DependencyGraphProof
↳ AND
↳ QDP
↳ QDP
↳ QDP
↳ QDP
↳ QDPSizeChangeProof
APP(app(filter, f), app(app(cons, x), xs)) → APP(f, x)
APP(app(app(app(filter2, false), f), x), xs) → APP(app(filter, f), xs)
APP(app(app(app(filter2, true), f), x), xs) → APP(app(filter, f), xs)
APP(app(filter, f), app(app(cons, x), xs)) → APP(app(app(app(filter2, app(f, x)), f), x), xs)
APP(app(map, f), app(app(cons, x), xs)) → APP(f, x)
APP(app(map, f), app(app(cons, x), xs)) → APP(app(map, f), xs)
app(app(le, 0), y) → true
app(app(le, app(s, x)), 0) → false
app(app(le, app(s, x)), app(s, y)) → app(app(le, x), y)
app(pred, app(s, x)) → x
app(app(minus, x), 0) → x
app(app(minus, x), app(s, y)) → app(pred, app(app(minus, x), y))
app(app(gcd, 0), y) → y
app(app(gcd, app(s, x)), 0) → app(s, x)
app(app(gcd, app(s, x)), app(s, y)) → app(app(app(if_gcd, app(app(le, y), x)), app(s, x)), app(s, y))
app(app(app(if_gcd, true), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, x), y)), app(s, y))
app(app(app(if_gcd, false), app(s, x)), app(s, y)) → app(app(gcd, app(app(minus, y), x)), app(s, x))
app(app(map, f), nil) → nil
app(app(map, f), app(app(cons, x), xs)) → app(app(cons, app(f, x)), app(app(map, f), xs))
app(app(filter, f), nil) → nil
app(app(filter, f), app(app(cons, x), xs)) → app(app(app(app(filter2, app(f, x)), f), x), xs)
app(app(app(app(filter2, true), f), x), xs) → app(app(cons, x), app(app(filter, f), xs))
app(app(app(app(filter2, false), f), x), xs) → app(app(filter, f), xs)
app(app(le, 0), x0)
app(app(le, app(s, x0)), 0)
app(app(le, app(s, x0)), app(s, x1))
app(pred, app(s, x0))
app(app(minus, x0), 0)
app(app(minus, x0), app(s, x1))
app(app(gcd, 0), x0)
app(app(gcd, app(s, x0)), 0)
app(app(gcd, app(s, x0)), app(s, x1))
app(app(app(if_gcd, true), app(s, x0)), app(s, x1))
app(app(app(if_gcd, false), app(s, x0)), app(s, x1))
app(app(map, x0), nil)
app(app(map, x0), app(app(cons, x1), x2))
app(app(filter, x0), nil)
app(app(filter, x0), app(app(cons, x1), x2))
app(app(app(app(filter2, true), x0), x1), x2)
app(app(app(app(filter2, false), x0), x1), x2)
From the DPs we obtained the following set of size-change graphs: